home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / FIRE.PAK / FIRE.CPP next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  86 lines

  1. // fire.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "fire.h"
  15. #include "firedlg.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CFireApp
  24.  
  25. BEGIN_MESSAGE_MAP(CFireApp, CWinApp)
  26.     //{{AFX_MSG_MAP(CFireApp)
  27.         // NOTE - the ClassWizard will add and remove mapping macros here.
  28.         //    DO NOT EDIT what you see in these blocks of generated code!
  29.     //}}AFX_MSG
  30.     ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  31. END_MESSAGE_MAP()
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CFireApp construction
  35.  
  36. CFireApp::CFireApp()
  37. {
  38.     // TODO: add construction code here,
  39.     // Place all significant initialization in InitInstance
  40. }
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // The one and only CFireApp object
  44.  
  45. CFireApp theApp;
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CFireApp initialization
  49.  
  50. BOOL CFireApp::InitInstance()
  51. {
  52.     DWORD dwVersion = ::GetVersion();
  53.     BOOL bWin31 = (dwVersion > 0x80000000 && (BYTE)dwVersion < 4);
  54.     if (bWin31)
  55.     {
  56.         AfxMessageBox(IDP_WIN32S);
  57.         return FALSE;
  58.     }
  59.  
  60.     // Standard initialization
  61.     // If you are not using these features and wish to reduce the size
  62.     //  of your final executable, you should remove from the following
  63.     //  the specific initialization routines you do not need.
  64.  
  65.     Enable3dControls();
  66.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  67.  
  68.     CFireDlg dlg;
  69.     m_pMainWnd = &dlg;
  70.     int nResponse = dlg.DoModal();
  71.     if (nResponse == IDOK)
  72.     {
  73.         // TODO: Place code here to handle when the dialog is
  74.         //  dismissed with OK
  75.     }
  76.     else if (nResponse == IDCANCEL)
  77.     {
  78.         // TODO: Place code here to handle when the dialog is
  79.         //  dismissed with Cancel
  80.     }
  81.  
  82.     // Since the dialog has been closed, return FALSE so that we exit the
  83.     //  application, rather than start the application's message pump.
  84.     return FALSE;
  85. }
  86.